Revision: tla--libawk-exp--1.3.1--patch-9
Archive: lord@emf.net--libawk-exp-2005
Creator: Thomas Lord <lord@emf.net>
Date: Fri Feb 11 16:09:13 PST 2005
Standard-date: 2005-02-12 00:09:13 GMT
Removed-files: libawk/trim.c libawk/trim.h
Modified-files: libarch/archive.c libarch/archive.h
    libarch/cmd-archive-mirror.c
    libarch/cmd-register-archive.c
New-patches: lord@emf.net--libawk-exp-2005/tla--libawk-exp--1.3.1--patch-9
Summary: Eliminate "libawk/trim.[ch]"
Keywords: 


The remaining calls to `trim_surrounding_ws' were all examples of
the idiom:


	s = trim_surrounding_ws (arch_get_meta_info (...));

This idiom was replaced everywhere with:

	s = arch_get_meta_info_trimming (...);

The function `arch_get_meta_info_trimming' uses hackerlab's
`str_save_trimming'.

The files "libawk/trim.[ch]", which defined and declared
`trim_surrounding_ws', have been removed.

